home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_09 / 1009102b < prev    next >
Encoding:
Text File  |  1995-11-01  |  242 b   |  19 lines

  1.  
  2. Listing 4
  3.  
  4. String &String::operator=(const String &s)
  5.     {
  6.     if (len != s.len)
  7.         {
  8.         delete [] str;
  9.         len = s.len;
  10.         str = new char[len + 1];
  11.         }
  12.     strcpy(str, s.str);
  13.     return *this;
  14.     }
  15.  
  16. ----------
  17.  
  18.  
  19.